55e59524090d4c9e0a441ac000e5669f86b39cdb,plugins/org.eclipse.xtend.core/xtend-gen/org/eclipse/xtend/core/macro/declaration/JvmAnnotationReferenceImpl.java,JvmAnnotationReferenceImpl,set,#String#number#,93
Before Change
public void set(final String name, final int... values) {
final JvmIntAnnotationValue newValue = TypesFactory.eINSTANCE.createJvmIntAnnotationValue();
JvmOperation _findOperation = this.findOperation(name);
newValue.setOperation(_findOperation);
EList<Integer> _values = newValue.getValues();
_values.addAll(((Collection<? extends Integer>)Conversions.doWrapArray(values)));
}
After Change
public void set(final String name, final int... values) {
final JvmIntAnnotationValue newValue = TypesFactory.eINSTANCE.createJvmIntAnnotationValue();
boolean _notEquals = ObjectExtensions.operator_notEquals(name, null);
if (_notEquals) {
JvmOperation _findOperation = this.findOperation(name);
newValue.setOperation(_findOperation);
}
EList<Integer> _values = newValue.getValues();
_values.addAll(((Collection<? extends Integer>)Conversions.doWrapArray(values)));
JvmAnnotationReference _delegate = this.getDelegate();
EList<JvmAnnotationValue> _values_1 = _delegate.getValues();
_values_1.add(newValue);
}
public boolean remove(final String name) {